home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / M2000PWA.ZIP / NEWUSER.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1994-04-11  |  933b  |  114 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 2.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING002
  20.     String   STRING003
  21.     String   STRING004
  22.     String   STRING005
  23.  
  24. ;------------------------------------------------------------------------------
  25.  
  26.     STRING002 = PPEPath() + "MATRIX.TMP"
  27.     FOpen 1, STRING002, 0, 0
  28.     FGet 1, STRING004
  29.     FGet 1, STRING003
  30.     FGet 1, STRING005
  31.     FClose 1
  32.     Delete STRING002
  33.     GetUser
  34.     U_Cmnt2 = STRING005
  35.     PutUser
  36.     PrintLn 
  37.     PrintLn "Thanks, @FIRST@, Your Registration Information is Saved!"
  38.     PrintLn 
  39.     More
  40.     If (Left(STRING003, 1) == "%") Then
  41.         DispFile Right(STRING003, Len(STRING003) - 1), 1
  42.         KbdStuff STRING004
  43.         Hangup
  44.     Else
  45.         PrintLn 
  46.         PrintLn STRING003
  47.         PrintLn 
  48.         KbdStuff STRING004
  49.         Hangup
  50.     Endif
  51.     End
  52.     Delete STRING002
  53.  
  54. ;------------------------------------------------------------------------------
  55. ;
  56. ; Usage report (before postprocessing)
  57. ;
  58. ; ■ Statements used :
  59. ;
  60. ;    1       End
  61. ;    1       More
  62. ;    2       Goto 
  63. ;    2       Let 
  64. ;    6       PrintLn 
  65. ;    1       If 
  66. ;    1       DispFile 
  67. ;    1       FOpen 
  68. ;    1       FClose 
  69. ;    3       FGet 
  70. ;    2       Hangup
  71. ;    1       GetUser
  72. ;    1       PutUser
  73. ;    2       Delete 
  74. ;    2       KbdStuff 
  75. ;
  76. ;
  77. ; ■ Functions used :
  78. ;
  79. ;    1       +
  80. ;    1       -
  81. ;    1       ==
  82. ;    1       !
  83. ;    1       Len(
  84. ;    1       Left()
  85. ;    1       Right()
  86. ;    1       PPEPath()
  87. ;
  88. ;------------------------------------------------------------------------------
  89. ;
  90. ; Analysis flags : WB
  91. ;
  92. ; W - Write user ■ 5
  93. ;     Program writes a user record. Although this may be normal for a
  94. ;     User Editor, it may also be a way to modify an account level.
  95. ;     ■ Search for : PUTUSER
  96. ;
  97. ; B - Brute hangup ■ 1
  98. ;     Program hangup without notification. This may be a good way to
  99. ;     disconnect a user, but if used randomly, may be very nasty
  100. ;     ■ Search for : HANGUP, DTROFF
  101. ;
  102. ;------------------------------------------------------------------------------
  103. ;
  104. ; Postprocessing report
  105. ;
  106. ;    0       For/Next
  107. ;    0       While/EndWhile
  108. ;    1       If/Then or If/Then/Else
  109. ;    0       Select Case
  110. ;
  111. ;------------------------------------------------------------------------------
  112. ;                 AEGiS Corp - Break the routines, code against the machines!
  113. ;------------------------------------------------------------------------------
  114.